home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
v8n05.arc
/
MULTI.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1989-02-15
|
252 b
|
11 lines
@ECHO OFF
CLS
IF "%2" == "" GOTO error
ECHO Executing the command %1 for files matching %2
FOR %%X IN (%2) DO COMMAND/C %1 %%X
GOTO end
:error
ECHO SYNTAX: MULTI command filename.ext
ECHO e.g. "MULTI TYPE *.*" or "MULTI BROWSE *.TXT"
:end